home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / syn.exe / 0 / RCDATA / TTEXTSEARCHDIALOG / TTEXTSEARCHDIALOG.txt
Text File  |  2004-02-29  |  5KB  |  233 lines

  1. object TextSearchDialog: TTextSearchDialog
  2.   Left = 235
  3.   Top = 75
  4.   BorderStyle = bsDialog
  5.   Caption = 'Search Text'
  6.   ClientHeight = 169
  7.   ClientWidth = 394
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poMainFormCenter
  16.   OnClose = FormClose
  17.   OnCloseQuery = FormCloseQuery
  18.   OnCreate = FormCreate
  19.   OnShow = FormShow
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object Label1: TLabel
  23.     Left = 8
  24.     Top = 12
  25.     Width = 52
  26.     Height = 13
  27.     Caption = '&Search for:'
  28.     FocusControl = cbSearchText
  29.   end
  30.   object cbSearchText: TComboBox
  31.     Left = 88
  32.     Top = 8
  33.     Width = 185
  34.     Height = 21
  35.     ItemHeight = 13
  36.     TabOrder = 0
  37.     OnChange = cbSearchTextChange
  38.     OnKeyDown = cbSearchTextKeyDown
  39.   end
  40.   object gbSearchOptions: TGroupBox
  41.     Left = 8
  42.     Top = 40
  43.     Width = 153
  44.     Height = 121
  45.     Caption = 'Options'
  46.     TabOrder = 1
  47.     object cbSearchCaseSensitive: TCheckBox
  48.       Left = 8
  49.       Top = 16
  50.       Width = 137
  51.       Height = 17
  52.       Caption = 'C&ase sensitivity'
  53.       TabOrder = 0
  54.     end
  55.     object cbSearchWholeWords: TCheckBox
  56.       Left = 8
  57.       Top = 32
  58.       Width = 137
  59.       Height = 17
  60.       Caption = '&Whole words only'
  61.       TabOrder = 1
  62.     end
  63.     object cbSearchFromCursor: TCheckBox
  64.       Left = 8
  65.       Top = 48
  66.       Width = 137
  67.       Height = 17
  68.       Caption = 'Search from &caret'
  69.       TabOrder = 2
  70.     end
  71.     object cbSearchSelectedOnly: TCheckBox
  72.       Left = 8
  73.       Top = 64
  74.       Width = 137
  75.       Height = 17
  76.       Caption = 'Selec&ted text only'
  77.       TabOrder = 3
  78.     end
  79.     object cbRegularExpression: TCheckBox
  80.       Left = 8
  81.       Top = 80
  82.       Width = 137
  83.       Height = 17
  84.       Caption = 'Regular E&xpressions'
  85.       TabOrder = 4
  86.     end
  87.     object chkMarkAll: TCheckBox
  88.       Left = 8
  89.       Top = 96
  90.       Width = 137
  91.       Height = 17
  92.       Caption = '&Mark all Matches'
  93.       TabOrder = 5
  94.     end
  95.   end
  96.   object rgSearchDirection: TRadioGroup
  97.     Left = 168
  98.     Top = 40
  99.     Width = 129
  100.     Height = 57
  101.     Caption = 'Direction'
  102.     ItemIndex = 0
  103.     Items.Strings = (
  104.       '&Forward'
  105.       '&Backward')
  106.     TabOrder = 2
  107.   end
  108.   object btnCancel: TCorelButton
  109.     Left = 312
  110.     Top = 40
  111.     Width = 75
  112.     Height = 23
  113.     Cancel = True
  114.     Caption = 'Cancel'
  115.     ModalResult = 2
  116.     TabOrder = 4
  117.   end
  118.   object btnOK: TCorelButton
  119.     Left = 312
  120.     Top = 8
  121.     Width = 75
  122.     Height = 23
  123.     Caption = 'OK'
  124.     Default = True
  125.     Enabled = False
  126.     ModalResult = 1
  127.     TabOrder = 3
  128.     OnClick = btnOKClick
  129.   end
  130.   object btnRegExp: TCorelButton
  131.     Left = 280
  132.     Top = 8
  133.     Width = 17
  134.     Height = 21
  135.     Hint = 'Metacharacters'
  136.     Caption = '>'
  137.     ParentShowHint = False
  138.     ShowHint = True
  139.     TabOrder = 5
  140.     OnClick = btnRegExpClick
  141.   end
  142.   object popRegExp: TPopupMenu
  143.     Left = 312
  144.     Top = 120
  145.     object AnyCharacter1: TMenuItem
  146.       Caption = 'Any Character'
  147.       OnClick = AnyCharacter1Click
  148.     end
  149.     object CharacterinRagne1: TMenuItem
  150.       Tag = 1
  151.       Caption = 'Character inside Range'
  152.       OnClick = AnyCharacter1Click
  153.     end
  154.     object OutsideRange1: TMenuItem
  155.       Tag = 2
  156.       Caption = 'Character outside Range'
  157.       OnClick = AnyCharacter1Click
  158.     end
  159.     object N1: TMenuItem
  160.       Caption = '-'
  161.     end
  162.     object StartofLine1: TMenuItem
  163.       Tag = 10
  164.       Caption = 'Start of Line'
  165.       OnClick = AnyCharacter1Click
  166.     end
  167.     object EndofLine1: TMenuItem
  168.       Tag = 11
  169.       Caption = 'End of Line'
  170.       OnClick = AnyCharacter1Click
  171.     end
  172.     object N2: TMenuItem
  173.       Caption = '-'
  174.     end
  175.     object Matchzeroormore1: TMenuItem
  176.       Tag = 20
  177.       Caption = 'Match zero or more'
  178.       OnClick = AnyCharacter1Click
  179.     end
  180.     object Matchoneormore1: TMenuItem
  181.       Tag = 21
  182.       Caption = 'Match one or more'
  183.       OnClick = AnyCharacter1Click
  184.     end
  185.     object Matchntimes1: TMenuItem
  186.       Tag = 22
  187.       Caption = 'Match n times'
  188.       OnClick = AnyCharacter1Click
  189.     end
  190.     object Matchntomtimes1: TMenuItem
  191.       Tag = 23
  192.       Caption = 'Match n to m times'
  193.       OnClick = AnyCharacter1Click
  194.     end
  195.     object N3: TMenuItem
  196.       Caption = '-'
  197.     end
  198.     object Alphanumeric1: TMenuItem
  199.       Tag = 30
  200.       Caption = 'Alphanumeric'
  201.       OnClick = AnyCharacter1Click
  202.     end
  203.     object NonAlphanumeric1: TMenuItem
  204.       Tag = 31
  205.       Caption = 'Non Alphanumeric'
  206.       OnClick = AnyCharacter1Click
  207.     end
  208.     object Number1: TMenuItem
  209.       Tag = 32
  210.       Caption = 'Number'
  211.       OnClick = AnyCharacter1Click
  212.     end
  213.     object NonNumeric1: TMenuItem
  214.       Tag = 33
  215.       Caption = 'Non Numeric'
  216.       OnClick = AnyCharacter1Click
  217.     end
  218.     object N4: TMenuItem
  219.       Caption = '-'
  220.     end
  221.     object AnySpace1: TMenuItem
  222.       Tag = 40
  223.       Caption = 'Any Space'
  224.       OnClick = AnyCharacter1Click
  225.     end
  226.     object NonSpace1: TMenuItem
  227.       Tag = 41
  228.       Caption = 'Non Space'
  229.       OnClick = AnyCharacter1Click
  230.     end
  231.   end
  232. end
  233.